home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2006 December / PCWDEC06.iso / Software / Trial / Paint Shop Pro XI / Data1.cab / _3F2ED02F176D46759960F68C2E48184E < prev    next >
Encoding:
Text File  |  2006-08-04  |  579 b   |  23 lines

  1. from PSPApp import *
  2.  
  3. def ScriptProperties():
  4.     return {
  5.         'Author': u'Corel, Inc.',
  6.         'Copyright': u'Copyright (c) 2005 Corel, Inc.  All rights reserved.',
  7.         'Description': 'Factory default preset for Infrared Film effect',
  8.         'Host': 'Paint Shop Pro 10',
  9.         'Host Version': '10.00',
  10.         }
  11.  
  12. def Preset_InfraredFilm():
  13.     return {
  14.         'Flare': 30, 
  15.         'Grain': 30, 
  16.         'Strength': 70
  17.         }
  18.  
  19. def Do(Environment):
  20.     # InfraredFilm
  21.     App.Do( Environment, 'InfraredFilm',         Preset_InfraredFilm())
  22.  
  23.